While we're not translating anything right now, we should still
setlocale() so that our output is formatted as command line users will
expect.
#include <errno.h>
#include <string.h>
+#include <locale.h>
#include "ot-main.h"
#include "ot-builtins.h"
GError *error = NULL;
int ret;
+ setlocale (LC_ALL, "");
+
ret = ostree_run (argc, argv, commands, &error);
if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED))
ostree_usage (argv, commands, TRUE);